home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Parser / tokenizer.c < prev    next >
Text File  |  1996-01-29  |  16KB  |  746 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Tokenizer implementation */
  26.  
  27. #include "pgenheaders.h"
  28.  
  29. #include <ctype.h>
  30.  
  31. #include "tokenizer.h"
  32. #include "errcode.h"
  33.  
  34. extern char *my_readline PROTO((char *));
  35. /* Return malloc'ed string including trailing \n;
  36.    empty malloc'ed string for EOF;
  37.    NULL if interrupted */
  38.  
  39. /* Don't ever change this -- it would break the portability of Python code */
  40. #define TABSIZE 8
  41.  
  42. /* Forward */
  43. static struct tok_state *tok_new PROTO((void));
  44. static int tok_nextc PROTO((struct tok_state *tok));
  45. static void tok_backup PROTO((struct tok_state *tok, int c));
  46.  
  47. /* Token names */
  48.  
  49. char *tok_name[] = {
  50.     "ENDMARKER",
  51.     "NAME",
  52.     "NUMBER",
  53.     "STRING",
  54.     "NEWLINE",
  55.     "INDENT",
  56.     "DEDENT",
  57.     "LPAR",
  58.     "RPAR",
  59.     "LSQB",
  60.     "RSQB",
  61.     "COLON",
  62.     "COMMA",
  63.     "SEMI",
  64.     "PLUS",
  65.     "MINUS",
  66.     "STAR",
  67.     "SLASH",
  68.     "VBAR",
  69.     "AMPER",
  70.     "LESS",
  71.     "GREATER",
  72.     "EQUAL",
  73.     "DOT",
  74.     "PERCENT",
  75.     "BACKQUOTE",
  76.     "LBRACE",
  77.     "RBRACE",
  78.     "EQEQUAL",
  79.     "NOTEQUAL",
  80.     "LESSEQUAL",
  81.     "GREATEREQUAL",
  82.     "TILDE",
  83.     "CIRCUMFLEX",
  84.     "LEFTSHIFT",
  85.     "RIGHTSHIFT",
  86.     "DOUBLESTAR",
  87.     /* This table must match the #defines in token.h! */
  88.     "OP",
  89.     "<ERRORTOKEN>",
  90.     "<N_TOKENS>"
  91. };
  92.  
  93.  
  94. /* Create and initialize a new tok_state structure */
  95.  
  96. static struct tok_state *
  97. tok_new()
  98. {
  99.     struct tok_state *tok = NEW(struct tok_state, 1);
  100.     if (tok == NULL)
  101.         return NULL;
  102.     tok->buf = tok->cur = tok->end = tok->inp = tok->start = NULL;
  103.     tok->done = E_OK;
  104.     tok->fp = NULL;
  105.     tok->tabsize = TABSIZE;
  106.     tok->indent = 0;
  107.     tok->indstack[0] = 0;
  108.     tok->atbol = 1;
  109.     tok->pendin = 0;
  110.     tok->prompt = tok->nextprompt = NULL;
  111.     tok->lineno = 0;
  112.     tok->level = 0;
  113.     return tok;
  114. }
  115.  
  116.  
  117. /* Set up tokenizer for string */
  118.  
  119. struct tok_state *
  120. tok_setups(str)
  121.     char *str;
  122. {
  123.     struct tok_state *tok = tok_new();
  124.     if (tok == NULL)
  125.         return NULL;
  126.     tok->buf = tok->cur = tok->end = tok->inp = str;
  127.     return tok;
  128. }
  129.  
  130.  
  131. /* Set up tokenizer for file */
  132.  
  133. struct tok_state *
  134. tok_setupf(fp, ps1, ps2)
  135.     FILE *fp;
  136.     char *ps1, *ps2;
  137. {
  138.     struct tok_state *tok = tok_new();
  139.     if (tok == NULL)
  140.         return NULL;
  141.     if ((tok->buf = NEW(char, BUFSIZ)) == NULL) {
  142.         DEL(tok);
  143.         return NULL;
  144.     }
  145.     tok->cur = tok->inp = tok->buf;
  146.     tok->end = tok->buf + BUFSIZ;
  147.     tok->fp = fp;
  148.     tok->prompt = ps1;
  149.     tok->nextprompt = ps2;
  150.     return tok;
  151. }
  152.  
  153.  
  154. /* Free a tok_state structure */
  155.  
  156. void
  157. tok_free(tok)
  158.     struct tok_state *tok;
  159. {
  160.     if (tok->fp != NULL && tok->buf != NULL)
  161.         DEL(tok->buf);
  162.     DEL(tok);
  163. }
  164.  
  165.  
  166. /* Get next char, updating state; error code goes into tok->done */
  167.  
  168. static int
  169. tok_nextc(tok)
  170.     register struct tok_state *tok;
  171. {
  172.     for (;;) {
  173.         if (tok->cur != tok->inp) {
  174.             return *tok->cur++; /* Fast path */
  175.         }
  176.         if (tok->done != E_OK)
  177.             return EOF;
  178.         if (tok->fp == NULL) {
  179.             char *end = strchr(tok->inp, '\n');
  180.             if (end != NULL)
  181.                 end++;
  182.             else {
  183.                 end = strchr(tok->inp, '\0');
  184.                 if (end == tok->inp) {
  185.                     tok->done = E_EOF;
  186.                     return EOF;
  187.                 }
  188.             }
  189.             if (tok->start == NULL)
  190.                 tok->buf = tok->cur;
  191.             tok->lineno++;
  192.             tok->inp = end;
  193.             return *tok->cur++;
  194.         }
  195.         if (tok->prompt != NULL) {
  196.             char *new = my_readline(tok->prompt);
  197.             if (tok->nextprompt != NULL)
  198.                 tok->prompt = tok->nextprompt;
  199.             if (new == NULL)
  200.                 tok->done = E_INTR;
  201.             else if (*new == '\0') {
  202.                 free(new);
  203.                 tok->done = E_EOF;
  204.             }
  205.             else if (tok->start != NULL) {
  206.                 int start = tok->start - tok->buf;
  207.                 int oldlen = tok->cur - tok->buf;
  208.                 int newlen = oldlen + strlen(new);
  209.                 char *buf = realloc(tok->buf, newlen+1);
  210.                 tok->lineno++;
  211.                 if (buf == NULL) {
  212.                     free(tok->buf);
  213.                     tok->buf = NULL;
  214.                     free(new);
  215.                     tok->done = E_NOMEM;
  216.                     return EOF;
  217.                 }
  218.                 tok->buf = buf;
  219.                 tok->cur = tok->buf + oldlen;
  220.                 strcpy(tok->buf + oldlen, new);
  221.                 free(new);
  222.                 tok->inp = tok->buf + newlen;
  223.                 tok->end = tok->inp + 1;
  224.                 tok->start = tok->buf + start;
  225.             }
  226.             else {
  227.                 tok->lineno++;
  228.                 if (tok->buf != NULL)
  229.                     free(tok->buf);
  230.                 tok->buf = new;
  231.                 tok->cur = tok->buf;
  232.                 tok->inp = strchr(tok->buf, '\0');
  233.                 tok->end = tok->inp + 1;
  234.             }
  235.         }
  236.         else {
  237.             int done = 0;
  238.             int cur = 0;
  239.             char *pt;
  240.             if (tok->start == NULL) {
  241.                 if (tok->buf == NULL) {
  242.                     tok->buf = NEW(char, BUFSIZ);
  243.                     if (tok->buf == NULL) {
  244.                         tok->done = E_NOMEM;
  245.                         return EOF;
  246.                     }
  247.                     tok->end = tok->buf + BUFSIZ;
  248.                 }
  249.                 if (fgets(tok->buf, (int)(tok->end - tok->buf),
  250.                       tok->fp) == NULL) {
  251.                     tok->done = E_EOF;
  252.                     done = 1;
  253.                 }
  254.                 else {
  255.                     tok->done = E_OK;
  256.                     tok->inp = strchr(tok->buf, '\0');
  257.                     done = tok->inp[-1] == '\n';
  258.                 }
  259.             }
  260.             else {
  261.                 cur = tok->cur - tok->buf;
  262.                 if (feof(tok->fp)) {
  263.                     tok->done = E_EOF;
  264.                     done = 1;
  265.                 }
  266.                 else
  267.                     tok->done = E_OK;
  268.             }
  269.             tok->lineno++;
  270.             /* Read until '\n' or EOF */
  271.             while (!done) {
  272.                 int curstart = tok->start == NULL ? -1 :
  273.                            tok->start - tok->buf;
  274.                 int curvalid = tok->inp - tok->buf;
  275.                 int cursize = tok->end - tok->buf;
  276.                 int newsize = curvalid + BUFSIZ;
  277.                 char *newbuf = tok->buf;
  278.                 RESIZE(newbuf, char, newsize);
  279.                 if (newbuf == NULL) {
  280.                     tok->done = E_NOMEM;
  281.                     tok->cur = tok->inp;
  282.                     return EOF;
  283.                 }
  284.                 tok->buf = newbuf;
  285.                 tok->inp = tok->buf + curvalid;
  286.                 tok->end = tok->buf + newsize;
  287.                 tok->start = curstart < 0 ? NULL :
  288.                          tok->buf + curstart;
  289.                 if (fgets(tok->inp,
  290.                            (int)(tok->end - tok->inp),
  291.                            tok->fp) == NULL) {
  292.                     /* Last line does not end in \n,
  293.                        fake one */
  294.                     strcpy(tok->inp, "\n");
  295.                 }
  296.                 tok->inp = strchr(tok->inp, '\0');
  297.                 done = tok->inp[-1] == '\n';
  298.             }
  299.             tok->cur = tok->buf + cur;
  300.             /* replace "\r\n" with "\n" */
  301.             pt = tok->inp - 2;
  302.             if (pt >= tok->buf && *pt == '\r') {
  303.                 *pt++ = '\n';
  304.                 *pt = '\0';
  305.                 tok->inp = pt;
  306.             }
  307.         }
  308.         if (tok->done != E_OK) {
  309.             if (tok->prompt != NULL)
  310.                 fprintf(stderr, "\n");
  311.             tok->cur = tok->inp;
  312.             return EOF;
  313.         }
  314.     }
  315.     /*NOTREACHED*/
  316. }
  317.  
  318.  
  319. /* Back-up one character */
  320.  
  321. static void
  322. tok_backup(tok, c)
  323.     register struct tok_state *tok;
  324.     register int c;
  325. {
  326.     if (c != EOF) {
  327.         if (--tok->cur < tok->buf)
  328.             fatal("tok_backup: begin of buffer");
  329.         if (*tok->cur != c)
  330.             *tok->cur = c;
  331.     }
  332. }
  333.  
  334.  
  335. /* Return the token corresponding to a single character */
  336.  
  337. int
  338. tok_1char(c)
  339.     int c;
  340. {
  341.     switch (c) {
  342.     case '(':    return LPAR;
  343.     case ')':    return RPAR;
  344.     case '[':    return LSQB;
  345.     case ']':    return RSQB;
  346.     case ':':    return COLON;
  347.     case ',':    return COMMA;
  348.     case ';':    return SEMI;
  349.     case '+':    return PLUS;
  350.     case '-':    return MINUS;
  351.     case '*':    return STAR;
  352.     case '/':    return SLASH;
  353.     case '|':    return VBAR;
  354.     case '&':    return AMPER;
  355.     case '<':    return LESS;
  356.     case '>':    return GREATER;
  357.     case '=':    return EQUAL;
  358.     case '.':    return DOT;
  359.     case '%':    return PERCENT;
  360.     case '`':    return BACKQUOTE;
  361.     case '{':    return LBRACE;
  362.     case '}':    return RBRACE;
  363.     case '^':    return CIRCUMFLEX;
  364.     case '~':    return TILDE;
  365.     default:    return OP;
  366.     }
  367. }
  368.  
  369.  
  370. int
  371. tok_2char(c1, c2)
  372.     int c1, c2;
  373. {
  374.     switch (c1) {
  375.     case '=':
  376.         switch (c2) {
  377.         case '=':    return EQEQUAL;
  378.         }
  379.         break;
  380.     case '!':
  381.         switch (c2) {
  382.         case '=':    return NOTEQUAL;
  383.         }
  384.         break;
  385.     case '<':
  386.         switch (c2) {
  387.         case '>':    return NOTEQUAL;
  388.         case '=':    return LESSEQUAL;
  389.         case '<':    return LEFTSHIFT;
  390.         }
  391.         break;
  392.     case '>':
  393.         switch (c2) {
  394.         case '=':    return GREATEREQUAL;
  395.         case '>':    return RIGHTSHIFT;
  396.         }
  397.         break;
  398.     case '*':
  399.         switch (c2) {
  400.         case '*':    return DOUBLESTAR;
  401.         }
  402.         break;
  403.     }
  404.     return OP;
  405. }
  406.  
  407.  
  408. /* Get next token, after space stripping etc. */
  409.  
  410. int
  411. tok_get(tok, p_start, p_end)
  412.     register struct tok_state *tok; /* In/out: tokenizer state */
  413.     char **p_start, **p_end; /* Out: point to start/end of token */
  414. {
  415.     register int c;
  416.     int blankline;
  417.  
  418.     *p_start = *p_end = NULL;
  419.   nextline:
  420.     tok->start = NULL;
  421.     blankline = 0;
  422.  
  423.     /* Get indentation level */
  424.     if (tok->atbol) {
  425.         register int col = 0;
  426.         tok->atbol = 0;
  427.         for (;;) {
  428.             c = tok_nextc(tok);
  429.             if (c == ' ')
  430.                 col++;
  431.             else if (c == '\t')
  432.                 col = (col/tok->tabsize + 1) * tok->tabsize;
  433.             else if (c == '\014') /* Control-L (formfeed) */
  434.                 col = 0; /* For Emacs users */
  435.             else
  436.                 break;
  437.         }
  438.         tok_backup(tok, c);
  439.         if (c == '#' || c == '\n') {
  440.             /* Lines with only whitespace and/or comments
  441.                shouldn't affect the indentation and are
  442.                not passed to the parser as NEWLINE tokens,
  443.                except *totally* empty lines in interactive
  444.                mode, which signal the end of a command group. */
  445.             if (col == 0 && c == '\n' && tok->prompt != NULL)
  446.                 blankline = 0; /* Let it through */
  447.             else
  448.                 blankline = 1; /* Ignore completely */
  449.             /* We can't jump back right here since we still
  450.                may need to skip to the end of a comment */
  451.         }
  452.         if (!blankline && tok->level == 0) {
  453.             if (col == tok->indstack[tok->indent]) {
  454.                 /* No change */
  455.             }
  456.             else if (col > tok->indstack[tok->indent]) {
  457.                 /* Indent -- always one */
  458.                 if (tok->indent+1 >= MAXINDENT) {
  459.                     fprintf(stderr, "excessive indent\n");
  460.                     tok->done = E_TOKEN;
  461.                     tok->cur = tok->inp;
  462.                     return ERRORTOKEN;
  463.                 }
  464.                 tok->pendin++;
  465.                 tok->indstack[++tok->indent] = col;
  466.             }
  467.             else /* col < tok->indstack[tok->indent] */ {
  468.                 /* Dedent -- any number, must be consistent */
  469.                 while (tok->indent > 0 &&
  470.                     col < tok->indstack[tok->indent]) {
  471.                     tok->indent--;
  472.                     tok->pendin--;
  473.                 }
  474.                 if (col != tok->indstack[tok->indent]) {
  475.                     fprintf(stderr, "inconsistent dedent\n");
  476.                     tok->done = E_TOKEN;
  477.                     tok->cur = tok->inp;
  478.                     return ERRORTOKEN;
  479.                 }
  480.             }
  481.         }
  482.     }
  483.     
  484.     tok->start = tok->cur;
  485.     
  486.     /* Return pending indents/dedents */
  487.     if (tok->pendin != 0) {
  488.         if (tok->pendin < 0) {
  489.             tok->pendin++;
  490.             return DEDENT;
  491.         }
  492.         else {
  493.             tok->pendin--;
  494.             return INDENT;
  495.         }
  496.     }
  497.     
  498.  again:
  499.     tok->start = NULL;
  500.     /* Skip spaces */
  501.     do {
  502.         c = tok_nextc(tok);
  503.     } while (c == ' ' || c == '\t' || c == '\014');
  504.     
  505.     /* Set start of current token */
  506.     tok->start = tok->cur - 1;
  507.     
  508.     /* Skip comment */
  509.     if (c == '#') {
  510.         /* Hack to allow overriding the tabsize in the file.
  511.            This is also recognized by vi, when it occurs near the
  512.            beginning or end of the file.  (Will vi never die...?)
  513.            For Python it must be at the beginning of the file! */
  514.         /* XXX The real vi syntax is actually different :-( */
  515.         /* XXX Should recognize Emacs syntax, too */
  516.         int x;
  517.         if (sscanf(tok->cur,
  518.                 " vi:set tabsize=%d:", &x) == 1 &&
  519.                         x >= 1 && x <= 40) {
  520.             /* fprintf(stderr, "# vi:set tabsize=%d:\n", x); */
  521.             tok->tabsize = x;
  522.         }
  523.         do {
  524.             c = tok_nextc(tok);
  525.         } while (c != EOF && c != '\n');
  526.     }
  527.     
  528.     /* Check for EOF and errors now */
  529.     if (c == EOF) {
  530.         return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN;
  531.     }
  532.     
  533.     /* Identifier (most frequent token!) */
  534.     if (isalpha(c) || c == '_') {
  535.         do {
  536.             c = tok_nextc(tok);
  537.         } while (isalnum(c) || c == '_');
  538.         tok_backup(tok, c);
  539.         *p_start = tok->start;
  540.         *p_end = tok->cur;
  541.         return NAME;
  542.     }
  543.     
  544.     /* Newline */
  545.     if (c == '\n') {
  546.         tok->atbol = 1;
  547.         if (blankline || tok->level > 0)
  548.             goto nextline;
  549.         *p_start = tok->start;
  550.         *p_end = tok->cur - 1; /* Leave '\n' out of the string */
  551.         return NEWLINE;
  552.     }
  553.     
  554.     /* Period or number starting with period? */
  555.     if (c == '.') {
  556.         c = tok_nextc(tok);
  557.         if (isdigit(c)) {
  558.             goto fraction;
  559.         }
  560.         else {
  561.             tok_backup(tok, c);
  562.             *p_start = tok->start;
  563.             *p_end = tok->cur;
  564.             return DOT;
  565.         }
  566.     }
  567.  
  568.     /* Number */
  569.     if (isdigit(c)) {
  570.         if (c == '0') {
  571.             /* Hex or octal */
  572.             c = tok_nextc(tok);
  573.             if (c == '.')
  574.                 goto fraction;
  575. #ifndef WITHOUT_COMPLEX
  576.             if (c == 'j' || c == 'J')
  577.                 goto imaginary;
  578. #endif
  579.             if (c == 'x' || c == 'X') {
  580.                 /* Hex */
  581.                 do {
  582.                     c = tok_nextc(tok);
  583.                 } while (isxdigit(c));
  584.             }
  585.             else {
  586.                 /* XXX This is broken!  E.g.,
  587.                    09.9 should be accepted as float! */
  588.                 /* Octal; c is first char of it */
  589.                 /* There's no 'isoctdigit' macro, sigh */
  590.                 while ('0' <= c && c < '8') {
  591.                     c = tok_nextc(tok);
  592.                 }
  593.             }
  594.             if (c == 'l' || c == 'L')
  595.                 c = tok_nextc(tok);
  596.         }
  597.         else {
  598.             /* Decimal */
  599.             do {
  600.                 c = tok_nextc(tok);
  601.             } while (isdigit(c));
  602.             if (c == 'l' || c == 'L')
  603.                 c = tok_nextc(tok);
  604.             else {
  605.                 /* Accept floating point numbers.
  606.                    XXX This accepts incomplete things like
  607.                    XXX 12e or 1e+; worry run-time */
  608.                 if (c == '.') {
  609.         fraction:
  610.                     /* Fraction */
  611.                     do {
  612.                         c = tok_nextc(tok);
  613.                     } while (isdigit(c));
  614.                 }
  615.                 if (c == 'e' || c == 'E') {
  616.                     /* Exponent part */
  617.                     c = tok_nextc(tok);
  618.                     if (c == '+' || c == '-')
  619.                         c = tok_nextc(tok);
  620.                     while (isdigit(c)) {
  621.                         c = tok_nextc(tok);
  622.                     }
  623.                 }
  624. #ifndef WITHOUT_COMPLEX
  625.                 if (c == 'j' || c == 'J')
  626.                     /* Imaginary part */
  627.         imaginary:
  628.                     c = tok_nextc(tok);
  629. #endif
  630.             }
  631.         }
  632.         tok_backup(tok, c);
  633.         *p_start = tok->start;
  634.         *p_end = tok->cur;
  635.         return NUMBER;
  636.     }
  637.     
  638.     /* String */
  639.     if (c == '\'' || c == '"') {
  640.         int quote = c;
  641.         int triple = 0;
  642.         int tripcount = 0;
  643.         for (;;) {
  644.             c = tok_nextc(tok);
  645.             if (c == '\n') {
  646.                 if (!triple) {
  647.                     tok->done = E_TOKEN;
  648.                     tok_backup(tok, c);
  649.                     return ERRORTOKEN;
  650.                 }
  651.                 tripcount = 0;
  652.             }
  653.             else if (c == EOF) {
  654.                 tok->done = E_TOKEN;
  655.                 tok->cur = tok->inp;
  656.                 return ERRORTOKEN;
  657.             }
  658.             else if (c == quote) {
  659.                 tripcount++;
  660.                 if (tok->cur == tok->start+2) {
  661.                     c = tok_nextc(tok);
  662.                     if (c == quote) {
  663.                         triple = 1;
  664.                         tripcount = 0;
  665.                         continue;
  666.                     }
  667.                     tok_backup(tok, c);
  668.                 }
  669.                 if (!triple || tripcount == 3)
  670.                     break;
  671.             }
  672.             else if (c == '\\') {
  673.                 tripcount = 0;
  674.                 c = tok_nextc(tok);
  675.                 if (c == EOF) {
  676.                     tok->done = E_TOKEN;
  677.                     tok->cur = tok->inp;
  678.                     return ERRORTOKEN;
  679.                 }
  680.             }
  681.             else
  682.                 tripcount = 0;
  683.         }
  684.         *p_start = tok->start;
  685.         *p_end = tok->cur;
  686.         return STRING;
  687.     }
  688.     
  689.     /* Line continuation */
  690.     if (c == '\\') {
  691.         c = tok_nextc(tok);
  692.         if (c != '\n') {
  693.             tok->done = E_TOKEN;
  694.             tok->cur = tok->inp;
  695.             return ERRORTOKEN;
  696.         }
  697.         goto again; /* Read next line */
  698.     }
  699.     
  700.     /* Check for two-character token */
  701.     {
  702.         int c2 = tok_nextc(tok);
  703.         int token = tok_2char(c, c2);
  704.         if (token != OP) {
  705.             *p_start = tok->start;
  706.             *p_end = tok->cur;
  707.             return token;
  708.         }
  709.         tok_backup(tok, c2);
  710.     }
  711.     
  712.     /* Keep track of parentheses nesting level */
  713.     switch (c) {
  714.     case '(':
  715.     case '[':
  716.     case '{':
  717.         tok->level++;
  718.         break;
  719.     case ')':
  720.     case ']':
  721.     case '}':
  722.         tok->level--;
  723.         break;
  724.     }
  725.     
  726.     /* Punctuation character */
  727.     *p_start = tok->start;
  728.     *p_end = tok->cur;
  729.     return tok_1char(c);
  730. }
  731.  
  732.  
  733. #ifdef DEBUG
  734.  
  735. void
  736. tok_dump(type, start, end)
  737.     int type;
  738.     char *start, *end;
  739. {
  740.     printf("%s", tok_name[type]);
  741.     if (type == NAME || type == NUMBER || type == STRING || type == OP)
  742.         printf("(%.*s)", (int)(end - start), start);
  743. }
  744.  
  745. #endif
  746.